Skip to content

Instantly share code, notes, and snippets.

@madhurimarawat
madhurimarawat / GATE-CSE-DS-Resources.md
Last active August 21, 2026 16:36
A collection of the best free GATE preparation resources for CSE & Data Science. Contributions are welcome!

πŸ“Œ GATE Resources - CSE & Data Science

I have compiled all the resources that helped me in my GATE preparation, and I hope they help you too! πŸš€

PostGIS Functions β€” A Hands-On Reference

A personal cheat-sheet for the core ST_* functions, grouped A–E by what they do. Every query here is runnable and every output shown was produced by actually running it. It uses a tiny self-contained demo dataset (two throwaway tables), so you can paste this whole file into psql and follow along without touching the app's data.

  • A. Constructors β€” build geometry from numbers or text
  • B. Accessors / Output β€” read data back out of a geometry

PostGIS: Understanding SRID, Geometry, and Geography

1. The Core Mental Model

The key idea is:

SRID and geometry/geography answer different questions. They don't compete with each other.

Think of spatial data as having three layers of meaning:

@yassineaboukir
yassineaboukir / List of API endpoints & objects
Last active August 21, 2026 16:27
A list of 3203 common API endpoints and objects designed for fuzzing.
0
00
01
02
03
1
1.0
10
100
1000
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<script src="Scripts/isRockFx.js"></script>
<script>
$(function () {
@stvhwrd
stvhwrd / LeetCodeQuestions.md
Last active August 21, 2026 16:18 — forked from krishnadey30/LeetCodeQuestions.md
Curated List of Top 75 LeetCode
@varqox
varqox / install_debian_with_debootstrap_howto.md
Last active August 21, 2026 16:16
Instructions how to install Debian using debootstrap
@DartPower
DartPower / ms-office-dl-links
Last active August 21, 2026 16:14
MS Office Download Links
@bradtraversy
bradtraversy / claude_crash_snippets.md
Last active August 21, 2026 16:13
Claude Crash Course Snippets

CLI Project Prompt

Create a Node script(index.js) that fetches the top 5 crypto prices from the CoinGecko API and prints them in a clean table β€” name, current price, 24-hour change. Keep the code clean and organized.

Readability Refactor

Refactor this for readability and maintainability. Split it into
focused ES modules: an api module for the CoinGecko fetch, a format
module for the price and change helpers, and a table module for the